home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / dlfcn / examples / oregonator.m < prev   
Text File  |  1997-03-07  |  231b  |  12 lines

  1. ## The `oregonator'.
  2.  
  3. function dx = oregonator (x, t)
  4.  
  5.   dx = zeros (3, 1);
  6.  
  7.   dx(1) = 77.27*(x(2) - x(1)*x(2) + x(1) - 8.375e-06*x(1)^2);
  8.   dx(2) = (x(3) - x(1)*x(2) - x(2)) / 77.27;
  9.   dx(3) = 0.161*(x(1) - x(3));
  10.  
  11. end
  12.